home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC 1.37.1r15 Full / Tests / fix-b.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-04  |  144 b   |  11 lines  |  [TEXT/MPS ]

  1. /* Compile with -b, each string should be 0-terminated. */
  2.  
  3. char *str1, *str2, *str3;
  4.  
  5. main()
  6. {
  7.     str2 = "bazz";
  8.     str1 = "foo";
  9.     str3 = "bar";
  10. }
  11.